.container-custom {
    max-width: 800px;
    margin: auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .heading-custom {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 2px solid #007bff;
    padding-bottom: 5px;
  }

  .related-post-custom {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }

  .related-post-img-custom {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

  .related-post-link-custom {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
  }

  .related-post-link-custom:hover {
    color: #0056b3;
  }

  @media (max-width: 576px) {
    .related-post-img-custom {
      width: 60px;
      height: 60px;
    }
  }